home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / intuition / classes.inc < prev    next >
Text File  |  1998-06-24  |  385b  |  24 lines

  1. include "inc/utility/hooks.inc";
  2. include "inc/intuition/classusr.inc";
  3.  
  4. struct Class is
  5.   cl_Dispatcher:Hook;
  6.   cl_Reserved:ulong;
  7.   cl_Super:ulong;
  8.   cl_ID:ulong;
  9.   cl_InstOffset:uword;
  10.   cl_InstSize:uword;
  11.   cl_UserData:ulong;
  12.   cl_SubclassCount:ulong;
  13.   cl_ObjectCount:ulong;
  14.   cl_Flags:ulong;
  15. ;
  16.  
  17. def CLF_INLIST = $00000001;
  18.  
  19. struct _Object is
  20.   o_Node:MinNode;
  21.   o_Class:ulong;
  22. ;
  23.  
  24.